home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C26 / Microsoft.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  3.2 KB  |  115 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C26
  7. # using the Microsoft compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f Microsoft.makefile
  11.  
  12. # Note: this requires the service Pack 3 from
  13. # www.Microsoft.com for successful compilation!
  14. CPP = cl
  15. CPPFLAGS = -GX -GR
  16. OFLAG = -o
  17. .SUFFIXES : .obj .cpp .c
  18. .cpp.obj :
  19.     $(CPP) $(CPPFLAGS) -c $<
  20. .c.obj :
  21.     $(CPP) $(CPPFLAGS) -c $<
  22.  
  23. all: \
  24.     Tracetst.exe \
  25.     CGI_GET.exe \
  26.     CGI_POST.exe \
  27.     mlm.exe \
  28.     RemoveDuplicates.exe \
  29.     RemoveGroup.exe \
  30.     ExtractUndeliverable.exe \
  31.     Batchmail.exe \
  32.     ExtractInfo.exe \
  33.     FormDump.exe \
  34.     ProcessApplication.exe \
  35.     DataToSpreadsheet.exe 
  36.  
  37. test: all 
  38.     Tracetst.exe  
  39.     CGI_GET.exe  
  40.     CGI_POST.exe  
  41.     mlm.exe  
  42.     RemoveDuplicates.exe  
  43.     RemoveGroup.exe  
  44.     ExtractUndeliverable.exe  
  45.     Batchmail.exe  
  46.     ExtractInfo.exe  
  47.     FormDump.exe  
  48.     ProcessApplication.exe  
  49.     DataToSpreadsheet.exe  
  50.  
  51. bugs: \
  52.     ExtractCode.exe \
  53.     MemTest.exe 
  54.  
  55. ExtractCode.exe: ExtractCode.obj 
  56.     $(CPP) $(OFLAG)ExtractCode.exe ExtractCode.obj 
  57.  
  58. Tracetst.exe: Tracetst.obj 
  59.     $(CPP) $(OFLAG)Tracetst.exe Tracetst.obj 
  60.  
  61. MemTest.exe: MemTest.obj MemCheck.obj 
  62.     $(CPP) $(OFLAG)MemTest.exe MemTest.obj MemCheck.obj 
  63.  
  64. CGI_GET.exe: CGI_GET.obj 
  65.     $(CPP) $(OFLAG)CGI_GET.exe CGI_GET.obj 
  66.  
  67. CGI_POST.exe: CGI_POST.obj 
  68.     $(CPP) $(OFLAG)CGI_POST.exe CGI_POST.obj 
  69.  
  70. mlm.exe: mlm.obj 
  71.     $(CPP) $(OFLAG)mlm.exe mlm.obj 
  72.  
  73. RemoveDuplicates.exe: RemoveDuplicates.obj 
  74.     $(CPP) $(OFLAG)RemoveDuplicates.exe RemoveDuplicates.obj 
  75.  
  76. RemoveGroup.exe: RemoveGroup.obj 
  77.     $(CPP) $(OFLAG)RemoveGroup.exe RemoveGroup.obj 
  78.  
  79. ExtractUndeliverable.exe: ExtractUndeliverable.obj 
  80.     $(CPP) $(OFLAG)ExtractUndeliverable.exe ExtractUndeliverable.obj 
  81.  
  82. Batchmail.exe: Batchmail.obj 
  83.     $(CPP) $(OFLAG)Batchmail.exe Batchmail.obj 
  84.  
  85. ExtractInfo.exe: ExtractInfo.obj 
  86.     $(CPP) $(OFLAG)ExtractInfo.exe ExtractInfo.obj 
  87.  
  88. FormDump.exe: FormDump.obj FormData.obj 
  89.     $(CPP) $(OFLAG)FormDump.exe FormDump.obj FormData.obj 
  90.  
  91. ProcessApplication.exe: ProcessApplication.obj FormData.obj 
  92.     $(CPP) $(OFLAG)ProcessApplication.exe ProcessApplication.obj FormData.obj 
  93.  
  94. DataToSpreadsheet.exe: DataToSpreadsheet.obj FormData.obj 
  95.     $(CPP) $(OFLAG)DataToSpreadsheet.exe DataToSpreadsheet.obj FormData.obj 
  96.  
  97.  
  98. ExtractCode.obj: ExtractCode.cpp 
  99. Tracetst.obj: Tracetst.cpp ..\require.h Trace.h 
  100. MemCheck.obj: MemCheck.cpp 
  101. MemTest.obj: MemTest.cpp MemCheck.h 
  102. CGI_GET.obj: CGI_GET.cpp CGImap.h 
  103. CGI_POST.obj: CGI_POST.cpp CGImap.h 
  104. mlm.obj: mlm.cpp CGImap.h 
  105. RemoveDuplicates.obj: RemoveDuplicates.cpp readLower.h ..\require.h 
  106. RemoveGroup.obj: RemoveGroup.cpp readLower.h ..\require.h 
  107. ExtractUndeliverable.obj: ExtractUndeliverable.cpp ..\require.h 
  108. Batchmail.obj: Batchmail.cpp ..\require.h 
  109. ExtractInfo.obj: ExtractInfo.cpp CGImap.h 
  110. FormData.obj: FormData.cpp FormData.h ..\require.h 
  111. FormDump.obj: FormDump.cpp FormData.h ..\require.h 
  112. ProcessApplication.obj: ProcessApplication.cpp FormData.h ..\require.h 
  113. DataToSpreadsheet.obj: DataToSpreadsheet.cpp FormData.h ..\require.h 
  114.  
  115.